Documentation

This was my entry point into Java. The goal was simple: print "Hello, World!" to the console.

Purpose: Warm-up exercise to verify my Java setup and understand the structure of a basic program (class, main method, System.out.println).

Key Takeaway: Every Java program starts with a main method, and semicolons are not optional.

Deliverable 1: Hello World Program

💻 Backend (Java Code)

     public class Hello_World_Program {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}
      

🌐 Live Frontend Demo